home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000824-20010305 / 000161_news@columbia.edu _Fri Dec 29 14:12:36 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id OAA29824
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Fri, 29 Dec 2000 14:12:36 -0500 (EST)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA02767
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 29 Dec 2000 14:12:35 -0500 (EST)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id NAA10202
  10.     for kermit.misc@watsun.cc.columbia.edu; Fri, 29 Dec 2000 13:55:39 -0500 (EST)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: Andrew Gierth <andrew@erlenstar.demon.co.uk>
  13. Subject: Re: Converting struct tm to time_t
  14. Date: 29 Dec 2000 18:43:29 +0000
  15. Organization: disorganised
  16. Message-ID: <87g0j7qd9q.fsf@erlenstar.demon.co.uk>
  17. To: kermit.misc@columbia.edu
  18.  
  19. >>>>> "Russ" == Russ Allbery <rra@stanford.edu> writes:
  20.  
  21.  Russ> INN currently uses this, which seems to work fairly well.  I'm
  22.  Russ> the author of this code; you can consider it to be in the
  23.  Russ> public domain.  Note that this code requires that time_t be an
  24.  Russ> arithmetic type, which may not work properly on some non-UNIX
  25.  Russ> platforms (it could presumably be replaced by a long or
  26.  Russ> something).
  27.  
  28. heh. insert religious war about leap-second handling here :-)
  29. (or on second thoughts, don't)
  30.  
  31. at least some systems have a timegm() function which is the UTC
  32. equivalent of mktime(). For those that don't, the straightforward
  33. calculation method is probably sufficient, though an alternative
  34. might be to do putenv("TZ=GMT0"); and then use mktime()....
  35.  
  36. -- 
  37. Andrew.
  38.  
  39. comp.unix.programmer FAQ: see <URL: http://www.erlenstar.demon.co.uk/unix/>
  40.                            or <URL: http://www.whitefang.com/unix/>